home *** CD-ROM | disk | FTP | other *** search
/ Holt Researcher: American History / Holt Researcher: American History.iso / pc / modules / tour.dxr / 00429.ls < prev    next >
Encoding:
Text File  |  2000-01-21  |  522 b   |  19 lines

  1. on exitFrame
  2.   global firstTime, goOn, gPlaySound, goQuick, gTiming, audioPath, gCurrLabel, notClicked, gMenuButton, gMenuExit, gTourForwardArrow, gTourBackArrow
  3.   if the frameLabel <> 0 then
  4.     gCurrLabel = the frameLabel
  5.   end if
  6.   repeat with rc in [gMenuButton, gMenuExit, gTourForwardArrow, gTourBackArrow]
  7.     doRollover(rc)
  8.   end repeat
  9.   if gTiming then
  10.     startTimer()
  11.     gTiming = 0
  12.   end if
  13.   if (the timer > (8 * 60)) and not (the stillDown) then
  14.     go(the frame + 1)
  15.   else
  16.     go(the frame)
  17.   end if
  18. end
  19.